ifTemplateValue

Class: com.microstrategy.web.app.taglibs.IfTemplateValueTag

Usage:

This custom tag provides a way for evaluating a set of properties associated with template values. Note: If no property is specified, it verifies whether the 'iFrame' property is true or not. For example:
 <web:ifTemplateValue mproperty="iFrame" runat="server" >
   <web:mthen runat="server" >
 This text is rendered if the value of the iFrame property matches the one specified in "value". Since the "value" attribute was not specified, it will treat the property as a boolean.
   </web:mthen>
 </web:ifTemplateValue>
 


Name Required? Description
mproperty false Indicates the property value that shall be retrieved from the current template.
Usage:
There's a predefined set of possible properties that can be asked for using this custom tag. If no property is specifed, the task of the custom tag will be to verify if the 'iFrame' property is true or not.
runat true Indicates that the ASP.Net control should be processed on the server
value false Indicates the value to compare the template's property with.
Usage:
The value indicated here will be compared against the one retrieved from the requested property. If this attribute is not specified, then the task of the custom tag will be limited to just determining the boolean value assigned to the requested property.